home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / ticker2.zip / scripts / tsound.cmd < prev   
OS/2 REXX Batch file  |  1996-06-13  |  282b  |  18 lines

  1. /* script to play sounds */
  2.  
  3. setlocal()
  4.  
  5. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  6. call SysLoadFuncs
  7.  
  8. env = 'OS2ENVIRONMENT'
  9. mmpath = value('MMBASE',,env)
  10.  
  11. if (\ (mmpath='')) then
  12.   do
  13.     play.cmd 'file="scripts\ticker.wav"'
  14.   end
  15. endlocal()
  16.  
  17. exit
  18.